home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Program_Files / cfdist.ini next >
Encoding:
Text File  |  2001-06-13  |  1.4 KB  |  55 lines

  1. ;
  2. ; Sample INI file for CFDist (AKA the "ColdFusion Listener Module").
  3. ;
  4. ; Place this file in the root directory of your CF installation.
  5. ; It must be named "cfdist.ini"
  6. ;
  7. ; !IMPORTANT! * All values (the strings on the right hand side of 
  8. ;               the equals sign) must be quoted using double 
  9. ;               quotes. 
  10. ;             * All info is case insensitive..
  11. ;             * Lines beginning with a semicolon are treated as 
  12. ;               comments and are ignored.
  13. ;
  14.  
  15.  
  16. ; Use this to specify the port at which to listen for incoming CF requests.
  17. ;
  18. ; Valid values: a valid port number (integer).
  19. ;
  20. PORT = "1234"
  21.  
  22.  
  23. ; Use this to specify that the data sent between the machine running
  24. ; the web server and the machine running this program be encrypted.
  25. ;
  26. ; Valid values: Yes, No.
  27. ;
  28. ENCRYPTION = "YES"
  29.  
  30.  
  31. ; Use this to specify the key used to encrypt the data.
  32. ;
  33. ; Valid values: any string of up to 127 ASCII chars.
  34. ;
  35. KEY = "dogface"
  36.  
  37. ; Use this to have this INI file be deleted after it is read at 
  38. ; startup. (This is a security feature as it keeps your key from
  39. ; being read by others.)
  40. ;
  41. ; Valid values: Yes, No.
  42. ;
  43. DELETE = "NO"
  44.  
  45.  
  46. ; Use this to write a message to the CF "remote.log" confirming that
  47. ; remoting is active and what startup parameters (except the encryption
  48. ; key) were used.
  49. ;
  50. ; Valid values: Yes, No.
  51. ;
  52. MESSAGE = "YES"
  53.  
  54.  
  55.